    /* GLOBAL RESET */
    .fb-coax-scope {
        background: #0a0a0a;
        color: #fff;
        font-family: 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .fb-coax-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
        width: 100%;
        margin-top: 50px;
    }

    /* TYPOGRAPHY */
    .fb-coax-title {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
        font-weight: 800;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
    }

    .fb-coax-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 4px;
        background: #ffcc00;
    }

    .fb-coax-title span {
        color: #ffcc00;
    }

    .fb-coax-header-center {
        text-align: center;
        margin-bottom: 40px;
    }

    .fb-coax-header-center .fb-coax-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* HERO SECTION */
    .fb-coax-hero {
        padding: clamp(80px, 12vh, 160px) 0;
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc48?q=80&w=1600') center/cover;
    }

    .fb-coax-badge {
        color: #ffcc00;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 1px;
        display: block;
        margin-bottom: 10px;
    }

    .fb-coax-h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
        font-weight: 900;
        line-height: 1.1;
        margin: 15px 0;
    }

    .fb-coax-p {
        max-width: 600px;
        color: #ccc;
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .fb-coax-actions {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    /* BUTTONS */
    .fb-coax-btn-main {
        background: #ffcc00;
        color: #000;
        padding: 15px 35px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
        display: inline-block;
        text-align: center;
    }

    .fb-coax-btn-outline {
        border: 2px solid #fff;
        color: #fff;
        padding: 13px 35px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
        display: inline-block;
        text-align: center;
    }

    .fb-coax-btn-main:hover {
        background: #fff;
        transform: translateY(-3px);
    }

    /* LAYOUT SECTIONS */
    .fb-coax-section {
        padding: clamp(50px, 10vh, 100px) 0;
    }

    .fb-coax-bg-grey {
        background: #050505;
    }

    .fb-coax-flex-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .fb-coax-img-main {
        width: 100%;
        border-radius: 12px;
        border: 1px solid #333;
        display: block;
    }

    .fb-coax-feature-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .fb-coax-f-item {
        color: #ffcc00;
        font-weight: 700;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* GRID & CARDS */
    .fb-coax-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .fb-coax-card {
        background: #111;
        border-radius: 15px;
        border: 1px solid #222;
        overflow: hidden;
        transition: 0.3s;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .fb-coax-card-img {
        width: 100%;
        height: 200px;
        overflow: hidden;
        border-bottom: 3px solid #ffcc00;
    }

    .fb-coax-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

    .fb-coax-card:hover .fb-coax-card-img img {
        transform: scale(1.1);
    }

    .fb-coax-card-body {
        padding: 30px;
        flex-grow: 1;
    }

    .fb-coax-card h3 {
        margin-bottom: 10px;
        font-size: 1.4rem;
    }

    .fb-coax-card p {
        color: #aaa;
        font-size: 0.95rem;
    }

    .fb-coax-featured {
        border-color: #ffcc00;
        background: #1a1a1a;
    }

    /* DUAL LIST SECTION */
    .fb-coax-dual-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .fb-coax-list-card {
        padding: 40px;
        border-radius: 20px;
        background: #111;
        border: 1px solid #222;
    }

    .fb-coax-yellow {
        background: #ffcc00;
        color: #000;
        border: none;
    }

    .fb-coax-ul {
        list-style: none;
        padding: 0;
        margin-top: 20px;
    }

    .fb-coax-ul li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 700;
        position: relative;
        padding-left: 30px;
    }

    .fb-coax-yellow .fb-coax-ul li {
        border-bottom-color: rgba(0, 0, 0, 0.1);
    }

    .fb-coax-ul li::before {
        content: '●';
        position: absolute;
        left: 0;
        color: #ffcc00;
        font-size: 1.2rem;
    }

    .fb-coax-yellow .fb-coax-ul li::before {
        color: #000;
    }

    /* CTA BAR */
    .fb-coax-cta {
        background: #111;
        padding: 60px 0;
        border-top: 4px solid #ffcc00;
    }

    .fb-coax-cta-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 25px;
    }

    .fb-coax-cta-flex h2 {
        margin: 0;
        font-size: 1.8rem;
        font-weight: 800;
    }

    /* RESPONSIVE CSS */
    @media (max-width: 992px) {

        .fb-coax-flex-split,
        .fb-coax-dual-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .fb-coax-hero {
            text-align: center;
        }

        .fb-coax-actions,
        .fb-coax-title::after {
            justify-content: center;
            left: 50%;
            /* transform: translateX(-50%); */
        }

        .fb-coax-p {
            margin-left: auto;
            margin-right: auto;
        }

        .fb-coax-visual-box {
            order: -1;
        }

        .fb-coax-feature-list {
            justify-content: center;
        }

        .fb-coax-ul li {
            text-align: left;
        }

        .fb-coax-cta-flex {
            justify-content: center;
            text-align: center;
        }
    }

    @media (max-width: 576px) {

        .fb-coax-btn-main,
        .fb-coax-btn-outline {
            width: 100%;
            box-sizing: border-box;
        }

        .fb-coax-section {
            padding: 40px 0;
        }

        .fb-coax-grid {
            grid-template-columns: 1fr;
        }

        .fb-coax-list-card {
            padding: 25px;
        }
    }